home *** CD-ROM | disk | FTP | other *** search
/ HAM Radio 1997 / HAM Radio 1997.iso / vcls / srctt26 / about.pas < prev    next >
Pascal/Delphi Source File  |  1996-04-08  |  770b  |  43 lines

  1. unit About;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, StdCtrls,
  6.   Buttons, ExtCtrls, AnaClock, Stamps;
  7.  
  8. type
  9.   TAboutBox = class(TForm)
  10.     Panel1: TPanel;
  11.     OKButton: TBitBtn;
  12.     ProductName: TLabel;
  13.     Version: TLabel;
  14.     Copyright: TLabel;
  15.     Comments: TLabel;
  16.     AnalogClock1: TAnalogClock;
  17.     TimeStamp1: TTimeStamp;
  18.     Label1: TLabel;
  19.     Label2: TLabel;
  20.     Label3: TLabel;
  21.     procedure Panel1DblClick(Sender: TObject);
  22.   private
  23.     { Private declarations }
  24.   public
  25.     { Public declarations }
  26.   end;
  27.  
  28. var
  29.   AboutBox: TAboutBox;
  30.  
  31. implementation
  32.  
  33. {$R *.DFM}
  34.  
  35. procedure TAboutBox.Panel1DblClick(Sender: TObject);
  36. begin
  37.   TimeStamp1.Visible := not TimeStamp1.Visible;
  38. end;
  39.  
  40. end.
  41.  
  42.  
  43.